Oracle Certified Associate, Java SE 7 Programmer Study Guide by Unknown
Author:Unknown
Language: eng
Format: epub, pdf
Publisher: Packt Publishing
Encapsulating collections
When using a collection within a class, hide the collection to prevent inadvertent modification of the collection. For example, if a class encapsulates an ArrayList of Books, then public methods should be provided to permit access to the collection. In the following example, a class called Library hides an ArrayList of Book objects:
public class Library { private ArrayList<Book> books = new ArrayList<Book>(); public Book getBook(int index) { return books.get(index); } public void addBook(Book book) { books.add(book); } public List getBooks() { return books; } }
Download
Oracle Certified Associate, Java SE 7 Programmer Study Guide by Unknown.pdf
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Red Hat Certified Specialist in Services Management and Automation EX358 Exam Guide by Eric McLeroy(5835)
The KCNA Book by Nigel Poulton(4081)
Microsoft Security, Compliance, and Identity Fundamentals Exam Ref SC-900 by Dwayne Natwick(3443)
Designing and Implementing Microsoft Azure Networking Solutions by David Okeyode(3341)
Microsoft Security Operations Analyst Exam Ref SC-200 Certification Guide by Trevor Stuart and Joe Anich(3301)
Microsoft Security Operations Analyst Exam Ref SC-200 Certification Guide by Trevor Stuart & Joe Anich(3205)
TCP IP by Todd Lammle(2959)
Microsoft Power BI Data Analyst Certification Guide by Ed Corcoran Orrin Edenfield(2909)
MCSA Windows Server 2016 Study Guide: Exam 70-740 by William Panek(2508)
Unity Certified Programmer: Exam Guide by Philip Walker(2387)
Networking A Beginner's Guide by Bruce Hallberg(2194)
Microsoft Power Platform Solution Architect's Handbook by Hugo Herrera(2014)
31 Days Before Your CompTIA A+ Exams (Shanette Luellen's Library) by Benjamin Patrick Conry(1847)
CompTIA A+ Practice Tests Core 1 (220-1101) and Core 2 (220-1102) by Ian Neil and Mark Birch(1773)
MCSA Windows Server 2016 Study Guide: Exam 70-741 by William Panek(1656)
PHP 7 Zend Certification Study Guide by Andrew Beak(1630)
Healthcare Information Security and Privacy (All-In-One) by Sean Murphy(1538)
CompTIA A+ Certification Guide (220-901 and 220-902) by Matthew Bennett(1515)
RHCSA & RHCE Red Hat Enterprise Linux 7: Training and Exam Preparation Guide (EX200 and EX300), Third Edition by Asghar Ghori(1472)
